home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-01-13 | 551 b | 26 lines | [TEXT/PJMM] |
- {****************************************************}
- {}
- { Starter.p }
- {}
- { A starter main file for writing programs with the }
- { THINK Class Library }
- {}
- { Copyright © 1989, Symantec Corporation. All rights reserved. }
- {}
- {****************************************************}
-
-
- PROGRAM Starter;
-
- { Turn off automatic initialization }
- {$I-}
-
- USES
- TCL, CSFDialogs, StarterIntf;
-
- BEGIN
- new(CStarterApp(gApplication));
- CStarterApp(gApplication).IStarterApp;
- gApplication.Run;
- gApplication.Exit;
- END.